home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / src / libgplus.5 / libgplus / gplus-in / sys / file.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-03  |  394 b   |  29 lines

  1. #ifndef __libgxx_sys_file_h
  2.  
  3. extern "C"
  4. {
  5. #ifdef __sys_file_h_recursive
  6. #include_next <sys/file.h>
  7. #else
  8. #define fcntl __hide_fcntl
  9. #define open  __hide_open
  10. #define creat __hide_creat
  11.  
  12. #define __sys_file_h_recursive
  13.  
  14. #ifdef VMS
  15. #include "GNU_CC_INCLUDE:[sys]file.h"
  16. #else
  17. #include_next <sys/file.h>
  18. #endif
  19.  
  20. #undef fcntl
  21. #undef open
  22. #undef creat
  23.  
  24. #define __libgxx_sys_file_h 1
  25.  
  26. #endif
  27. }
  28. #endif
  29.